home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / misc / esptest.arj / ESPDRIVR.PAS next >
Pascal/Delphi Source File  |  1992-03-02  |  708b  |  24 lines

  1.  
  2. {***********************************************************}
  3. {**    Copyright 1991   by Phil Mosier                    **}
  4. {***********************************************************}
  5.  
  6. Unit ESPDRIVR;
  7. {***********************************************************}
  8. {**  Unit to accompany ESPTEST.PAS. This unit links  the  **}
  9. {**  BGI graphics driver into a single TPU file. This     **}
  10. {**  makes it easy to link the driver file directly into  **}
  11. {**  then ESPTEST.EXE file.                               **}
  12. {***********************************************************}
  13. Interface
  14.  
  15. Procedure CGADRIVERPROC;
  16.  
  17. Implementation
  18.  
  19. Procedure CGADRIVERPROC; External;
  20. {$L CGA.OBJ }
  21.  
  22. End.
  23. 
  24.